projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f87bb1e
)
(info-insert-file-contents): Avoid conflict with jka-compr.
author
Richard M. Stallman
<rms@gnu.org>
Thu, 19 May 1994 22:42:22 +0000
(22:42 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Thu, 19 May 1994 22:42:22 +0000
(22:42 +0000)
lisp/info.el
patch
|
blob
|
history
diff --git
a/lisp/info.el
b/lisp/info.el
index cb517c9bb3a106060289d0c6d1523c017bfe1179..be58d0650495e956dd419d7f9373b659e3f757a0 100644
(file)
--- a/
lisp/info.el
+++ b/
lisp/info.el
@@
-129,6
+129,12
@@
Do the right thing if the file has been compressed or zipped."
(setq tail (cdr tail)))
(setq fullname (concat filename (car (car tail)))
decoder (cdr (car tail)))
+ ;; check for conflict with jka-compr
+ (if (and (featurep 'jka-compr)
+ (jka-compr-installed-p)
+ (jka-compr-get-compression-info (concat filename
+ (car (car tail)))))
+ (setq decoder nil))
(or tail
(error "Can't find %s or any compressed version of it!" filename)))
(insert-file-contents fullname visit)